Description
Create a container with the given name as title in the container backing the file system item with the given id. Return the file system item backed by the created container as a JSON blob.
Operation id | NuxeoDrive.CreateFolder |
Category | Services |
Label | Nuxeo Drive: Create folder |
Requires | |
Since | |
Parameters
Signature
Implementation Information
JSON Definition
{
"id" : "NuxeoDrive.CreateFolder",
"label" : "Nuxeo Drive: Create folder",
"category" : "Services",
"requires" : null,
"description" : "Create a container with the given name as title in the container backing the file system item with the given id. Return the file system item backed by the created container as a JSON blob.",
"url" : "NuxeoDrive.CreateFolder",
"signature" : [ "void", "blob" ],
"params" : [ {
"name" : "name",
"description" : "Title of the container to create.",
"type" : "string",
"required" : true,
"widget" : null,
"order" : 0,
"values" : [ ]
}, {
"name" : "parentId",
"description" : "Id of the file system item backed by the parent container.",
"type" : "string",
"required" : true,
"widget" : null,
"order" : 0,
"values" : [ ]
}, {
"name" : "overwrite",
"description" : "Optional, whether to overwrite an existing container with the same title.",
"type" : "boolean",
"required" : false,
"widget" : null,
"order" : 0,
"values" : [ "false" ]
} ]
}